home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
pascal3
/
pro5
/
test.h
< prev
next >
Wrap
Text File
|
1989-12-15
|
2KB
|
40 lines
void test_screen(void)
{
gotoxy(1,4);
cputs("╔══════════════════════════════════════════════════════════════════════════╗");
gotoxy(1,5);
cputs("║ THIS TEST SCREEN WAS DRAWN WITH A TEXT EDITOR. THE CODE GENERATORS CAN ║");
gotoxy(1,6);
cputs("║ PROCESS IT INTO TURBO PASCAL OR TURBO C, FOR USE AS A DATA ENTRY SCREEN. ║");
gotoxy(1,7);
cputs("╚══════════════════════════════════════════════════════════════════════════╝");
gotoxy(10,11);
cputs("╔═══════════════════════════════════════════════════════════╗");
gotoxy(10,12);
cputs("║ Name ║");
gotoxy(10,13);
cputs("║ Street & Number ║");
gotoxy(10,14);
cputs("║ City State ZIP Code - ║");
gotoxy(10,15);
cputs("║ Telephone # ( ) - ║");
gotoxy(10,16);
cputs("╚═══════════════════════════════════════════════════════════╝");
gotoxy(1,19);
cputs("┌─────────────────────────────────────────────────────────────────────────────┐");
gotoxy(1,20);
cputs("│ WATCH THIS LINE FOR MESSAGES ══> │");
gotoxy(1,21);
cputs("└─────────────────────────────────────────────────────────────────────────────┘");
/* DATA FIELD COORDINATES AND LENGTHS */ /* 50-column data field at (18,12) */
/* 39-column data field at (29,13) */
/* 19-column data field at (18,14) */
/* 2-column data field at (45,14) */
/* 5-column data field at (57,14) */
/* 4-column data field at (63,14) */
/* 3-column data field at (27,15) */
/* 3-column data field at (32,15) */
/* 4-column data field at (36,15) */
/* 41-column data field at (36,20) */
} /* test_screen() */